home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / fileutil.zip / BACKUPFI.C < prev    next >
Text File  |  1994-07-16  |  9KB  |  353 lines

  1. /* backupfile.c -- make Emacs style backup file names
  2.    Copyright (C) 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* David MacKenzie <djm@ai.mit.edu>.
  19.    Some algorithms adapted from GNU Emacs. */
  20. /* MS-DOS port (c) 1990 by Thorsten Ohl, ohl@gnu.ai.mit.edu
  21.    This port is also distributed under the terms of the
  22.    GNU General Public License as published by the
  23.    Free Software Foundation.
  24.  
  25.    Please note that this file is not identical to the
  26.    original GNU release, you should have received this
  27.    code as patch to the official release.
  28.  
  29.     Saturday, 16 July 1994  Troy Rollo (troy@cbme.unsw.EDU.AU)
  30.  
  31.         - Added conditional definition of min()
  32.  */
  33.  
  34. #ifdef MSDOS
  35. static char RCS_Id[] =
  36.   "$Header: e:/gnu/fileutil/RCS/backupfi.c 1.4.0.2 90/09/19 12:27:27 tho Exp $";
  37. #endif /* MSDOS */
  38.  
  39. #include <stdio.h>
  40. #include <ctype.h>
  41. #include <sys/types.h>
  42. #include "backupfile.h"
  43. #if defined(USG) || defined(_STDC_HEADERS)
  44. #define index strchr
  45. #define rindex strrchr
  46. #include <string.h>
  47. #else
  48. #include <strings.h>
  49. #endif
  50.  
  51. #ifndef min
  52. #define min(a, b) ((a) < (b) ? (a) : (b))
  53. #endif
  54.  
  55. #ifdef DIRENT
  56. #include <dirent.h>
  57. #ifdef direct
  58. #undef direct
  59. #endif
  60. #define direct dirent
  61. #define NLENGTH(direct) (strlen((direct)->d_name))
  62. #else
  63. #define NLENGTH(direct) ((direct)->d_namlen)
  64. #ifdef USG
  65. #ifdef SYSNDIR
  66. #include <sys/ndir.h>
  67. #else
  68. #include <ndir.h>
  69. #endif
  70. #else /* must be BSD */
  71. #include <sys/dir.h>
  72. #endif
  73. #endif
  74.  
  75. #ifdef STDC_HEADERS
  76. #include <stdlib.h>
  77. #define ISDIGIT(c) (isdigit ((unsigned char) (c)))
  78. #else
  79. #define ISDIGIT(c) (isascii (c) && isdigit (c))
  80.  
  81. char *malloc ();
  82. #endif
  83.  
  84. #ifdef MSDOS
  85. extern char *find_backup_file_name (char *file);
  86. static int max_backup_version (char *file, char *dir);
  87. static char *make_version_name (char *file, int version);
  88. static int version_number (char *base, char *backup, int base_length);
  89. static char *dirname (char *path);
  90. static char *basename (char *name);
  91. static char *concat (char *str1, char *str2);
  92. static char *copystring (char *str);
  93. static char *chop_filename (char *path, int n);
  94. #endif /* MSDOS */
  95.  
  96. /* Which type of backup file names are generated. */
  97. enum backup_type backup_type = none;
  98.  
  99. /* The extension added to file names to produce a simple (as opposed
  100.    to numbered) backup file name. */
  101. char *simple_backup_suffix = "~";
  102.  
  103. static char *basename ();
  104. static char *concat ();
  105. static char *copystring ();
  106. static char *dirname ();
  107. char *find_backup_file_name ();
  108. static char *make_version_name ();
  109. static int max_backup_version ();
  110. static int version_number ();
  111.  
  112. /* Return the name of the new backup file for file FILE,
  113.    allocated with malloc.  Return 0 if out of memory.
  114.    FILE must not end with a '/' unless it is the root directory.
  115.    Do not call this function if backup_type == none. */
  116.  
  117. char *
  118. find_backup_file_name (file)
  119.      char *file;
  120. {
  121.   char *dir;
  122.   char *base_versions;
  123.   int highest_backup;
  124.  
  125.   if (backup_type == simple)
  126.     return concat (file, simple_backup_suffix);
  127.   base_versions = concat (basename (file), ".~");
  128.   if (base_versions == 0)
  129.     return 0;
  130.   dir = dirname (file);
  131.   if (dir == 0)
  132.     {
  133.       free (base_versions);
  134.       return 0;
  135.     }
  136.   highest_backup = max_backup_version (base_versions, dir);
  137.   free (base_versions);
  138.   free (dir);
  139.   if (backup_type == numbered_existing && highest_backup == 0)
  140.     return concat (file, simple_backup_suffix);
  141.   return make_version_name (file, highest_backup + 1);
  142. }
  143.  
  144. /* Return the number of the highest-numbered backup file for file
  145.    FILE in directory DIR.  If there are no numbered backups
  146.    of FILE in DIR, return 0.
  147.    FILE should already have ".~" appended to it. */
  148.  
  149. static int
  150. max_backup_version (file, dir)
  151.      char *file, *dir;
  152. {
  153.   DIR *dirp;
  154.   struct direct *dp;
  155.   int highest_version;
  156.   int this_version;
  157.   int file_name_length;
  158.   
  159.   dirp = opendir (dir);
  160.   if (!dirp)
  161.     return 0;
  162.   
  163.   highest_version = 0;
  164.   file_name_length = strlen (file);
  165.  
  166.   while ((dp = readdir (dirp)) != 0)
  167.     {
  168. #ifdef MSDOS
  169.       if (NLENGTH (dp) <= file_name_length)
  170. #else /* not MSDOS */
  171.       if (dp->d_ino == 0 || NLENGTH (dp) <= file_name_length)
  172. #endif /* not MSDOS */
  173.     continue;
  174.       
  175.       this_version = version_number (file, dp->d_name, file_name_length);
  176.       if (this_version > highest_version)
  177.     highest_version = this_version;
  178.     }
  179.   closedir (dirp);
  180.   return highest_version;
  181. }
  182.  
  183. #ifdef MSDOS
  184. static char suffix[5];
  185. #endif /* not MSDOS */
  186.  
  187. /* Return a string, allocated with malloc, containing
  188.    "FILE.~VERSION~".  Return 0 if out of memory. */
  189.  
  190. static char *
  191. make_version_name (file, version)
  192.      char *file;
  193.      int version;
  194. {
  195. #ifdef MSDOS
  196.   sprintf (suffix, ".~%.1d~", version);
  197.   return concat (file, suffix);
  198. #else /* not MSDOS */
  199.   char *backup_name;
  200.  
  201.   backup_name = malloc (strlen (file) + 16);
  202.   if (backup_name == 0)
  203.     return 0;
  204.   sprintf (backup_name, "%s.~%d~", file, version);
  205.   return backup_name;
  206. #endif /* not MSDOS */
  207. }
  208.  
  209. /* If BACKUP is a numbered backup of BASE, return its version number;
  210.    otherwise return 0.  BASE_LENGTH is the length of BASE.
  211.    BASE should already have ".~" appended to it. */
  212.  
  213. static int
  214. version_number (base, backup, base_length)
  215.      char *base;
  216.      char *backup;
  217.      int base_length;
  218. {
  219.   int version;
  220.   char *p;
  221.  
  222.   version = 0;
  223.   if (!strncmp (base, backup, base_length) && ISDIGIT (backup[base_length]))
  224.     {
  225.       for (p = &backup[base_length]; ISDIGIT (*p); ++p)
  226.     version = version * 10 + *p - '0';
  227. #ifdef MSDOS
  228.       if (*p && *p != '~')
  229. #else /* not MSDOS */
  230.       if (p[0] != '~' || p[1])
  231. #endif /* not MSDOS */
  232.     version = 0;
  233.     }
  234.   return version;
  235. }
  236.  
  237. /* Return the leading directories part of PATH,
  238.    allocated with malloc.  If out of memory, return 0. */
  239.  
  240. static char *
  241. dirname (path)
  242.      char *path;
  243. {
  244.   char *newpath;
  245.   char *slash;
  246.  
  247.   slash = rindex (path, '/');
  248.   if (slash == 0)
  249.     return copystring (".");
  250.  
  251.   newpath = malloc (strlen (path) + 1);
  252.   if (newpath == 0)
  253.     return 0;
  254.   strcpy (newpath, path);
  255.   slash += newpath - path;
  256.   /* Remove any trailing slashes and final element. */
  257.   while (slash > newpath && *slash == '/')
  258.     --slash;
  259.   slash[1] = 0;
  260.   return newpath;
  261. }
  262.  
  263. /* Return NAME with any leading path stripped off.  */
  264.  
  265. static char *
  266. basename (name)
  267.      char *name;
  268. {
  269.   char *base;
  270.  
  271.   base = rindex (name, '/');
  272.   return base ? base + 1 : name;
  273. }
  274.  
  275. /* Return the newly-allocated concatenation of STR1 and STR2.
  276.    If out of memory, return 0. */
  277.  
  278. static char *
  279. concat (str1, str2)
  280.      char *str1, *str2;
  281. {
  282.   char *newstr;
  283.   char str1_length = strlen (str1);
  284.  
  285. #ifdef MSDOS
  286.   /* The MS-DOS version tries to squeeze the given string into a valid
  287.      MS-DOS patch name.  STR1 is chopped and a leading period is removed
  288.      from STR2.  Kludge: a leading period is counted in the length of STR2,
  289.      this is because we will know, that in this case a digit will be appended
  290.      afterwards.  */
  291.   /* chop_filename () might add a '.', so allocate one more byte.  */
  292.   newstr = malloc (str1_length + strlen (str2) + 2);
  293.   if (newstr == 0)
  294.     return 0;
  295.   strcpy (newstr, str1);
  296.   chop_filename (newstr, min (2, strlen(str2)));
  297.   if (*str2 == '.')
  298.     str2++;
  299.   strcat (newstr, str2);
  300. #else /* not MSDOS */
  301.   newstr = malloc (str1_length + strlen (str2) + 1);
  302.   if (newstr == 0)
  303.     return 0;
  304.   strcpy (newstr, str1);
  305.   strcpy (newstr + str1_length, str2);
  306. #endif /* not MSDOS */
  307.   return newstr;
  308. }
  309.  
  310. /* Return a newly allocated copy of STR. */
  311.  
  312. static char *
  313. copystring (str)
  314.      char *str;
  315. {
  316.   char *newstr;
  317.   
  318.   newstr = malloc (strlen (str) + 1);
  319.   if (newstr == 0)
  320.     return 0;
  321.   strcpy (newstr, str);
  322.   return newstr;
  323. }
  324.  
  325.  
  326. #ifdef MSDOS
  327. /* Shorten a MS-DOS path to accomodate a backup suffix.  */
  328.  
  329. char *
  330. chop_filename (char *path, int n)
  331. {
  332.   char *base;
  333.   char *suffix;
  334.  
  335.   base = strrchr (path, '/');
  336.   if (base == (char *)0)
  337.     base = path;
  338.   else
  339.     base++;
  340.  
  341.   suffix = strchr (base, '.');
  342.   if (suffix == (char *)0)
  343.     strcat (base, ".");        /* is ok, since we have allocated enough! */
  344.   else if (strlen (suffix) >= 4 - n)
  345.     suffix[4-n] = '\0';
  346.  
  347.   return path;
  348. }
  349. #endif /* MSDOS */
  350.  
  351.  
  352.  
  353.